#import <Foundation/Foundation.h>

int main (int argc, const char *argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

    NSLog (@"Programowanie jest fajne!");
    NSLog (@"A programowanie w jzyku Objective-C jest jeszcze fajniejsze!");

     [pool drain];
    return 0;
}